home *** CD-ROM | disk | FTP | other *** search
/ Nejlepší České Hry / Nej české hry.iso / hry / spinava historka / gEN.swf / scripts / DefineButton2_364 / BUTTONCONDACTION on(release).as
Text File  |  2004-10-08  |  966b  |  45 lines

  1. on(release){
  2.    _root.hero.clickSpot_x = 700;
  3.    _root.hero.clickSpot_y = 320;
  4.    if(getProperty(_root.cur, _X) > getProperty(_root.hero, _X))
  5.    {
  6.       setProperty("_root.hero.heroint", _xscale, "+100");
  7.    }
  8.    if(getProperty(_root.cur, _X) < getProperty(_root.hero, _X))
  9.    {
  10.       setProperty("_root.hero.heroint", _xscale, "-100");
  11.    }
  12.    if(_root.phone.hitTest(_root.hero.heroint))
  13.    {
  14.       if(_root.money eq true)
  15.       {
  16.          tellTarget("_root.phone")
  17.          {
  18.             gotoAndStop(5);
  19.          }
  20.       }
  21.       else
  22.       {
  23.          tellTarget("_root.c")
  24.          {
  25.             gotoAndStop("ne");
  26.          }
  27.       }
  28.       if(_root.matka eq true)
  29.       {
  30.          _root.prog_telefon = true;
  31.          tellTarget("_root.phone")
  32.          {
  33.             gotoAndPlay(7);
  34.          }
  35.       }
  36.       else
  37.       {
  38.          tellTarget("_root.c")
  39.          {
  40.             gotoAndStop("ne");
  41.          }
  42.       }
  43.    }
  44. }
  45.